/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9fafc;
  color: #1a1a1a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 70px 8%;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px; /* gap reduced */
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  padding: 60px 8%;
  border-radius: 0 0 60px 60px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 520px;
}

.tagline {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* push image right */
}

.hero-image img {
  width: 460px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* =========================
   ABOUT SECTION
========================= */
.about-vehicle {
  background: #ffffff;
  padding: 70px 8%;
}

.container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #f4a100;
}

.about-content .lead {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 25px;
}

.about-content p {
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.8;
}

/* =========================
   SECTION HEADINGS
========================= */
.highlights h2,
.locations h2,
.pricing h2,
.documents h2,
.cta h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #f4a100;
}

/* =========================
   GRID LAYOUTS
========================= */
.highlight-grid,
.location-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* =========================
   CARDS
========================= */
.card,
.location-card,
.price-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  text-align: center;
}

.card:hover,
.location-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.price {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
  color: #2563eb;
}

/* =========================
   DOCUMENTS
========================= */
.documents ul {
  max-width: 500px;
  margin: auto;
  list-style: none;
  text-align: center;
}

.documents li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

/* =========================
   CTA SECTION
========================= */
.cta {
  text-align: center;
  background: #2563eb;
  color: white;
  border-radius: 40px;
  padding: 60px 20px;
  margin: 40px 8%;
}

.cta p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.whatsapp-btn,
.call-btn {
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  color: white;
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #33b5e5;
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: translateY(-4px);
}

/* =========================
   FLOATING BUTTONS
========================= */
.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 22px;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #33b5e5;
  color: white;
  padding: 15px;
  border-radius: 50%;
}

/* =========================
   TABLET FIX (≤ 992px)
========================= */
@media (max-width: 992px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 6%;
    gap: 20px; /* gap reduced */
  }

  .hero-content p {
    margin: auto;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-image img {
    max-width: 350px;
  }
}

/* =========================
   MOBILE FIX (≤ 576px)
========================= */
@media (max-width: 576px) {

  section {
    padding: 50px 5%;
  }

  .hero {
    padding: 40px 5%;
    border-radius: 0 0 35px 35px;
    gap: 15px; /* remove big spacing */
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-image img {
    max-width: 260px;
  }

  .highlight-grid,
  .location-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 35px 15px;
    margin: 30px 5%;
    border-radius: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .whatsapp-btn,
  .call-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    font-size: 14px;
  }

  .floating-whatsapp,
  .scroll-top {
    padding: 12px;
    font-size: 18p
  }
}
/* GO HOME BUTTON */
.go-home-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0ae8f0;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.go-home-btn:hover {
  background: white;
  transform: translateY(-3px);
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 576px) {

  .go-home-btn {
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
  }

}
